home *** CD-ROM | disk | FTP | other *** search
/ A.C.E. 1 / ACE CD 1.iso / files / utils / framema2.dms / in.adf / TOOLS / REXX / tst.rexx < prev   
Encoding:
OS/2 REXX Batch file  |  1992-11-24  |  511 b   |  24 lines

  1. /* TEST */
  2.  
  3. /* Prisma-Host anwählen:    */
  4. address 'PRISMA'
  5. options results
  6.  
  7. /* Prisma reservieren und handle in Variable 'handle' speichern */
  8. ObtainPrisma;
  9. handle=result;
  10.  
  11. /* Öffnet Prisma-Preferences auf WB-Screen: */
  12. PTV handle '3' '-1' '-1' '0';
  13. say result;
  14.  
  15. /* Gibt Speicher als RGB-Bild aus:  */
  16. ShowRGB handle 320 256 10000 20000 30000
  17. say result
  18.  
  19. /* Bild laden und anzeigen: */
  20. LoadPicture handle 'PIC:IFF24/CANDLE.IFF'
  21.  
  22. /* Gibt Prisma wieder frei für andere Applikationen:    */
  23. ReleasePrisma handle;
  24.